regexp.onePassMachine.matchcap (field)
13 uses
regexp (current package)
exec.go#L378: matchcap []int
exec.go#L404: if cap(m.matchcap) < ncap {
exec.go#L405: m.matchcap = make([]int, ncap)
exec.go#L407: m.matchcap = m.matchcap[:ncap]
exec.go#L411: for i := range m.matchcap {
exec.go#L412: m.matchcap[i] = -1
exec.go#L452: if len(m.matchcap) > 0 {
exec.go#L453: m.matchcap[0] = 0
exec.go#L454: m.matchcap[1] = pos
exec.go#L485: if int(inst.Arg) < len(m.matchcap) {
exec.go#L486: m.matchcap[inst.Arg] = pos
exec.go#L507: dstCap = append(dstCap, m.matchcap...)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |